博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
完成个人中心—导航标签
阅读量:4926 次
发布时间:2019-06-11

本文共 1165 字,大约阅读时间需要 3 分钟。

  1. 个人中心—视图函数带标签页面参数tag
    @app.route('/usercenter/<user_id>/<tag>')
    def usercenter(user_id, tag):
       if tag == ‘1':
           return render_template('usercenter1.html', **context)
  2. 个人中心—导航标签链接增加tag参数
    <li role=“presentation”><a href=“{
    { url_for(‘usercenter’,user_id = user.id,tag = ‘1’) }}">全部问答</a></li>
  3. 个人中心—有链接到个人中心页面的url增加tag参数

 <a href="{

{ url_for('usercenter',user_id = session.get('userid'), tag=1) }}">{
{ session.get('user') }}</a>

主py文件:

@app.route('/gr/
/
')@loginFirstdef gr(user_id,tag): user=User.query.filter(User.id==user_id).first() #把信息存放到数据库里面 context={ 'username':user.username, 'question':user.question, 'comments':user.comments, 'user':user } if tag == '1': return render_template('wd.html',**context) #输出显示数据库里的信息 elif tag == '2': return render_template('pl.html',**context) else: return render_template('zx.html', **context)

个人中心导航html:

链接页面html:

首页:

详情页:

导航页:

 

转载于:https://www.cnblogs.com/qisq/p/8066977.html

你可能感兴趣的文章
hdu 1290_献给杭电五十周年校庆的礼物
查看>>
Nginx 入门
查看>>
openCR-用ROS代码点亮LED的方法
查看>>
豆瓣电影api
查看>>
BufferedInputStream和FileInputStream的区别
查看>>
二阶段之六
查看>>
微博爬虫 python
查看>>
中石油 【递归】普通递归关系
查看>>
vue报错Error in render: "TypeError: Cannot read property '0' of undefined"
查看>>
silverlight 隐藏ChildWindow 右上角的关闭按钮
查看>>
oracle获取子串
查看>>
List排序
查看>>
Javascript闭包(Closure)
查看>>
字符串操作
查看>>
redis
查看>>
likely() 和 unlikely()
查看>>
4. Median of Two Sorted Arrays
查看>>
03一些View总结
查看>>
每月一次,免费领取小米云服务会员
查看>>
MapReduce--平均分,最高,低分以及及格率的计算
查看>>